home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960209-19960425 / 000396_news@columbia.edu _Thu Apr 11 11:29:15 1996.msg < prev    next >
Internet Message Format  |  1996-05-13  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id LAA09200 for <kermit.misc@watsun>; Thu, 11 Apr 1996 11:29:13 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id LAA14637 for kermit.misc@watsun; Thu, 11 Apr 1996 11:29:09 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Setting Modem S-registers
  8. Date: 11 Apr 1996 15:28:56 GMT
  9. Organization: Columbia University
  10. Lines: 48
  11. Message-ID: <4kj8fo$e95@apakabar.cc.columbia.edu>
  12. References: <4khb90$7at@canopus.cc.umanitoba.ca>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4khb90$7at@canopus.cc.umanitoba.ca>,
  16. Walid Chamma <walid@InfoMag.mb.ca> wrote:
  17. :  Is it possible to set the S-registers of a modem by running kermit
  18. :  from a line command on a UNIX machine ( non-interactive).
  19. :  So that the command can be executed at specific time.
  20. :  e.g. answer after 5 rings ( S0=05 )
  21. As explained on page 315 of the user manual, "Using C-Kermit", you can
  22. put one or more interactive-mode commands on the C-Kermit command line
  23. using the -C (uppercase) option, e.g.:
  24.  
  25.   kermit -C "command, command, command, ..."
  26.  
  27. so in your case:
  28.  
  29.   kermit -C "set line /dev/blah, set speed 19200, output ats0=5\13"
  30.  
  31. And now a word from your sponsor (not directed at this particular poster):
  32.  
  33. A great many of the questions that are posted to this newsgroup are already
  34. answered in the published manuals.  If you purchase the appropriate manual:
  35.  
  36.  . You won't need to post your question here, if it is already answered
  37.    there, and therefore you won't have to wait several days to get an
  38.    answer, and you won't have to suffer through the "please purchase the
  39.    manual" lecture :-)
  40.  
  41.  . You'll be helping to support the Kermit Project, since sales of these
  42.    manuals is what pays for the software you are using.
  43.  
  44.  . You'll be freeing up the time of the developers and support people to
  45.    work on new releases, fix bugs, and troubleshoot problems that are not
  46.    covered in the manuals, so that new and better releases of the software
  47.    and updated editions of the manuals are available to you in a more 
  48.    timely fashion.
  49.  
  50.  . You might enjoy it :-)
  51.  
  52. To find out what manuals are available and how to get them:
  53.  
  54.  . On the Web: http://www.columbia.edu/kermit/manuals.html
  55.  
  56.  . By ftp: kermit.columbia.edu, directory kermit/e, file booklist.doc
  57.    (or .ps if you prefer PostScript).
  58.  
  59. - Frank